home *** CD-ROM | disk | FTP | other *** search
- /*
- File: MathFSetSub.c
-
- Contains: Implementation of the MathFSetSub function set.
-
- Copyright: © 1993 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #ifndef __MATHFSET__
- #include "MathFSet.h"
- #endif
-
- int MathFunction1(int a, int b)
- {
- return a - b;
- }
-
- int MathFunction2(int a, int b, int c)
- {
- return a - b - c;
- }
-